# Links & Infos
# div. Tipps und Infos
Multiplizieren ist für Rechner einfache als dividieren: *0.5 ist besser als /2
verschachtelte If-Statements möglichst vermeiden
Convention für Boolean:
isCondition
Convention for Names (From the Google Closure Library Style Guide):
functionNamesLikeThis; variableNamesLikeThis; ConstructorNamesLikeThis; EnumNamesLikeThis; methodNamesLikeThis; SYMBOLIC_CONSTANTS_LIKE_THIS;
# Referenz-links
- MDN JS Documentation (opens new window)
- w3schools JS Tutorial (opens new window)
- devdocs (opens new window)
- Handout Learn 2 Code - Hamburg Coding School (opens new window)
- [Handout Javascript for Web - Hamburg Coding School](files/Handout - JavaScript for Web.pdf)
- Principles of Writing Consistent, Idiomatic JavaScript (opens new window)